Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

636140 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/199 - Guess the Number Game

Screenshot (36).png cody/swapnilsparsh/30DaysOfJavaScript/199 - Guess the Number Game/Screenshot (36).png
67 Views
0 Comments
Media file
Screenshot (38).png cody/swapnilsparsh/30DaysOfJavaScript/199 - Guess the Number Game/Screenshot (38).png
76 Views
0 Comments
Media file
Screenshot (35).png cody/swapnilsparsh/30DaysOfJavaScript/199 - Guess the Number Game/Screenshot (35).png
91 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/199 - Guess the Number Game/style.css
111 Views
0 Comments
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: inherit;
}

index.html cody/swapnilsparsh/30DaysOfJavaScript/199 - Guess the Number Game/index.html
277 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<title>Guess My Number!</title>
Screenshot (37).png cody/swapnilsparsh/30DaysOfJavaScript/199 - Guess the Number Game/Screenshot (37).png
93 Views
0 Comments
Media file
script.js cody/swapnilsparsh/30DaysOfJavaScript/199 - Guess the Number Game/script.js
178 Views
0 Comments
'use strict';
//console.log(document.querySelector('.message').textContent);

let secret = Math.trunc(Math.random()*20)+1;
let score=20;
let high=0;